VintaSoft Imaging .NET SDK 14.0: Documentation for .NET developer
Vintasoft.Imaging.Drawing Namespace / IGraphicsPath Interface / AddClosedCurve Methods / AddClosedCurve(PointF[],Single) Method
Syntax Requirements SeeAlso
In This Topic
    AddClosedCurve(PointF[],Single) Method (IGraphicsPath)
    In This Topic
    Adds a closed curve to this path.
    Syntax
    'Declaration
    
    Public Overloads Sub AddClosedCurve( _
    ByVal points
    An array of System.Drawing.PointF structures that represents the points that define the curve.
    () As System.Drawing.PointF, _
    ByVal tension
    A value between from 0 through 1 that specifies the amount that the curve bends between points, with 0 being the smallest curve (sharpest corner) and 1 being the smoothest curve.
    As Single _
    )
    public void AddClosedCurve(
    System.Drawing.PointF[] points,
    float tension
    )
    public: void AddClosedCurve(
    System.Drawing.PointF[]* points,
    float tension
    )
    public:
    void AddClosedCurve(
    array<System.Drawing.PointF>^ points,
    float tension
    )

    Parameters

    points
    An array of System.Drawing.PointF structures that represents the points that define the curve.
    tension
    A value between from 0 through 1 that specifies the amount that the curve bends between points, with 0 being the smallest curve (sharpest corner) and 1 being the smoothest curve.
    Requirements

    Target Platforms: .NET9; .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

    See Also